/* --- RESET --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f9f9f9;
  color: #0b2250;
  line-height: 1.6;
  font-family: 'Playfair Display', Georgia, serif;
}

/* --- HEADER --- */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 180px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-list a {
  text-decoration: none;
  color: #001e5b;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-list a:hover {
  color: #eacb6c;
}

/* --- CONTENT CENTERED COLUMN --- */
.wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 16px;
  background-color: white;
}

.content {
  max-width: 680px;
  width: 100%;
  color: #0a2156;
}

h1 {
  font-size: 40px;
  font-weight: 600;
  color: #0a2156;
  margin-bottom: 24px;
}

h2 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 36px;
  color: #0a2156;
}

p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.7;
}

ul {
  margin-top: 10px;
  padding-left: 20px;
  font-size: 15px;
}

ul li {
  margin-bottom: 12px;
}

a {
  color: #0a2156;
  text-decoration: underline;
}

/* --- FOOTER --- */
.footer {
  background-color: #0c1c3d;
  color: #fff;
  font-family: sans-serif;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  max-width: 600px;
}

.footer-left .logo {
  height: 80px;
  margin-bottom: 20px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-right {
  display: flex;
  align-items: center;
}

.linkedin-link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.linkedin-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.footer-nav {
  text-align: center;
  margin: 30px 0 10px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #22314f;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
  color: #888;
  font-size: 13px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #bbb;
  margin: 0 10px;
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  text-decoration: underline;
}



